-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tidy monorepo setup #15128
Tidy monorepo setup #15128
Conversation
QA Wolf here! As you write new code it's important that your test coverage is keeping up. |
f628f45
to
38b988b
Compare
@@ -134,10 +134,10 @@ const environment = { | |||
BUDIBASE_ENVIRONMENT: process.env.BUDIBASE_ENVIRONMENT, | |||
JS_BCRYPT: process.env.JS_BCRYPT, | |||
JWT_SECRET: process.env.JWT_SECRET | |||
? createSecretKey(Buffer.from(process.env.JWT_SECRET)) | |||
? createSecretKey(process.env.JWT_SECRET, "utf8") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a strange case... We are using node 20, and based on their docs, it should accept "buffer" as a parameter. But the types don't allow it. Until now it was working as we were wrongly using node 22 types
Description
Making a better use of the yarn workspace, cleaning up and removing some unnecessary processes:
Related:
Feature branch env
Feature Branch Link